org.springframework.data.document.mongodb.geo
Class Point

java.lang.Object
  extended by org.springframework.data.document.mongodb.geo.Point

public class Point
extends java.lang.Object

Represents a geospatial point value.

Author:
Mark Pollack, Oliver Gierke

Field Summary
private  double x
           
private  double y
           
 
Constructor Summary
Point(double x, double y)
          
Method Summary
 double[] asArray()
           
 boolean equals(java.lang.Object obj)
           
 double getX()
           
 double getY()
           
 int hashCode()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

x

private final double x

y

private final double y
Constructor Detail

Point



Point

public Point(Point point)
Method Detail

getX

public double getX()

getY

public double getY()

asArray

public double[] asArray()

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object